af4549f8eabc30f0e9eb1be7fb2b1fe58444a3fd,java/org/apache/jasper/compiler/TagFileProcessor.java,TagFileLoaderVisitor,visit,#Node.CustomTag#,619
Before Change
// Add TLD
pageInfo.addDependant(jarResource.getEntry(location.getName()).toString());
// Add Tag
pageInfo.addDependant(jarResource.getEntry(tagFilePath.substring(1)).toString());
} else {
pageInfo.addDependant(tagFilePath);
}
After Change
compiler.getCompilationContext().getTldLocation(
tagFileInfo.getTagInfo().getTagLibrary().getURI());
JarResource jarResource = location.getJarResource();
if (jarResource != null) {
// Add TLD
pageInfo.addDependant(jarResource.getEntry(location.getName()).toString());
// Add Tag
pageInfo.addDependant(jarResource.getEntry(tagFilePath.substring(1)).toString());
}
else {
pageInfo.addDependant(tagFilePath);